<!DOCTYPE html>
<html>
<head>
  <title>My Biodata</title>
  <style>
    /* Button Styles */
    .button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #4CAF50;
      color: #fff;
      text-decoration: none;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
    }

    /* Image Styles */
    .profile-img {
      width: 200px;
      height: 200px;
      border-radius: 50%;
    }

    /* Text Styles */
    p {
      font-size: 18px;
      line-height: 1.5;
    }

    /* Pagination Styles */
    .pagination {
      display: inline-block;
    }

    .pagination a {
      color: black;
      float: left;
      padding: 8px 16px;
      text-decoration: none;
      transition: background-color .3s;
      border: 1px solid #ddd;
      margin: 0 4px;
    }

    .pagination a.active {
      background-color: #4CAF50;
      color: white;
      border: 1px solid #4CAF50;
    }

    /* Table Styles */
    table {
      border-collapse: collapse;
      width: 100%;
    }

    th, td {
      padding: 8px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }

    th {
      background-color: #f2f2f2;
    }
  </style>
</head>
<body>
  <h1>My Biodata</h1>

  <img class="profile-img" src="desktop/raju.jpg" alt="Rajus Profile Picture">

  <h2>Personal Information</h2>
  <p>Name: Raju</p>
  <p>Age: 30</p>
  <p>Location: Bangalore</p>
  <p>Email: rajubangalore@gmail.com</p>

  <h2>Detailed Information</h2>
  <table>
    <tr>
      <th>Category</th>
      <th>Details</th>
    </tr>
    <tr>
      <td>Education</td>
      <td>Bachelor's Degree in Computer Science</td>
    </tr>
    <tr>
      <td>Experience</td>
      <td>5 years of professional experience</td>
    </tr>
    <tr>
      <td>Skills</td>
      <td>HTML, CSS, JavaScript, Python, etc.</td>
    </tr>
  </table>

  <div class="pagination">
    <a href="#" class="active">1</a>
    <a href="#">2</a>
    <a href="#">3</a>
  </div>

  <a href="#" class="button">Download CV</a>
</body>
</html>